home *** CD-ROM | disk | FTP | other *** search
/ Komputer for Alle 2001 #6 / CD 6 (Black) - 2001.iso / Tools / WebWasher / WebWasherOld.exe / %MAINDIR% / jscript.txt next >
Encoding:
Text File  |  1999-10-15  |  1.0 KB  |  47 lines

  1. JavaScript support in WebWasher
  2. ===============================
  3.  
  4.  
  5. 1.1 Supported functionality
  6.     -----------------------
  7.  
  8. bool    isPlainHostName ( char *host )
  9.  
  10. bool    dnsDomainIs ( char *host, char *domain )
  11.  
  12. bool    localHostOrDomainIs ( char *host, char *hostdom )
  13.  
  14. bool    isResolvable ( char *host )
  15.  
  16. bool    isInNet ( char *host, char *pattern, char *mask )
  17.  
  18. char    *dnsResolve ( char *host )
  19.  
  20. char    *myIpAddress ( void )
  21.  
  22. (Note: As of now always returns "127.0.0.1")
  23.  
  24. int    dnsDomainLevels ( char *host )
  25.  
  26. bool    shExpMatch ( char *str, char *shexp )
  27.  
  28. [else] if ( <boolean expression> ) [{] ... [}]
  29.  
  30. return "..." [+ "..." []]
  31.  
  32. <string>.substring ( int start, int end )
  33.  
  34.  
  35.  
  36. 1.2 Currently not supported functions
  37.     ---------------------------------
  38.  
  39. bool    weekdayRange ( char *wd1, char *wd2, char *gmt )
  40.  
  41. bool    dateRange ( int day1, char *month1, int year1, int day2, char *month2, int year2, char *gmt )
  42.  
  43. bool    timeRange ( int hour1, int min1, int sec1, int hour2, int min2, int sec2, char *gmt )
  44.  
  45. And all other JavaScript functionality not listed under 1.1
  46.  
  47.